Skip to main content
Get the task-based match score between two Job Families
curl --request GET \
  --url https://{tenant_name}.{region}.techwolf.ai/job_architecture/job_families/{job_family_external_id}/job_families/{other_job_family_external_id}/task_match \
  --header 'Authorization: Bearer <token>'
{
  "job_family_id": "b0035050-eb84-42dc-a79f-5e7b1fe897b7",
  "target_job_family_id": "a3903505-eb84-42dc-a79f-5e7b1fe897b7",
  "score": 0.42
}

Documentation Index

Fetch the complete documentation index at: https://developers.techwolf.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

job_family_external_id
string<uuid>
required

Unique external ID linked to this Job, consisting of alphanumeric characters, hyphens and underscores. The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100
Pattern: [a-zA-Z0-9_-]+
Example:

"a3903505-eb84-42dc-a79f-5e7b1fe897b7"

other_job_family_external_id
string<uuid>
required

Unique external ID linked to the target Job Family to compare against, consisting of alphanumeric characters, hyphens and underscores. The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100
Pattern: [a-zA-Z0-9_-]+
Example:

"a3903505-eb84-42dc-a79f-5e7b1fe897b7"

Response

OK

A task-based match result between two Job Families.

job_family_id
string<uuid>
required

The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100
Pattern: [a-zA-Z0-9_-]+
Example:

"b0035050-eb84-42dc-a79f-5e7b1fe897b7"

target_job_family_id
string<uuid>
required

The unique ID in your system, consisting of alphanumeric characters, hyphens and underscores.

Required string length: 1 - 100
Pattern: [a-zA-Z0-9_-]+
Example:

"a3903505-eb84-42dc-a79f-5e7b1fe897b7"

score
number<float>
required

The symmetric task-based match score between the two Job Families, expressed as a number between 0 and 1.

Required range: 0 <= x <= 1
Example:

0.42